# Copyright (c) 1994 Sun Wu, Udi Manber, Burra Gopal. All Rights Reserved.
# To compile for structured queries, make "all: Sall" and "STRUCTURED_QUERIES=1".
#STRUCTURED_QUERIES = 0
STRUCTURED_QUERIES = 1
#all: NOTSall
all: Sall
# Define HAVE_DIRENT_H to be 1 when you don't have <sys/dir.h> else define it to be 0 (in this case, one of the other 3 flags may need to be defined to be 1).
HAVE_DIRENT_H = 1
HAVE_SYS_DIR_H = 0
HAVE_SYS_NDIR_H = 0
HAVE_NDIR_H = 0
# Define UTIME to be 1 if you have the utime() routine on your system. Else define it to be 0.
UTIME = 1
# Define ISO_CHAR_SET to be 1 if you want to use the international 8bit character set. Else define it to be 0.
ISO_CHAR_SET = 0
# You might have to change this depending on your machine configuration.
CC = cc
SHELL = /bin/sh
# For compatibility with SFS, define this flag (internal only)
SFS_COMPAT = 0
# YOU DON'T HAVE TO CHANGE ANYTHING BELOW THIS LINE
# The binaries will be made in ../bin/. and the agrep library is assumed to
# be in ../lib . You normally don't have to change them.
# NOTE: INDEXDIR can be a relative or absolute path name.
BINDIR = ../bin
AGREPDIR = ../agrep
INDEXDIR = ../index
TEMPLATEDIR = ../libtemplate
LIBAGREPDIR = ../lib
LIBTEMPLATEDIR = $(TEMPLATEDIR)/lib
LIBAGREP = agrep
LIBTEMPLATE = template
LIBUTIL = util
OTHERLIBS =
PROG = glimpseindex
NOTSPROG = nots$(PROG)
CASTPROG = buildcast
NOTSCASTPROG = nots$(CASTPROG)
# Include flags is not a part of CLFAGS and LINKFLAGS since path names from subdirs can be different